-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] Support HashJoin For Shards #698
Conversation
# Conflicts: # pkg/runtime/optimize/dml/select.go
# Conflicts: # pkg/runtime/optimize/dml/select.go
# Conflicts: # pkg/runtime/optimize/shard_visitor_test.go
Codecov ReportPatch coverage:
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. Additional details and impacted files@@ Coverage Diff @@
## master #698 +/- ##
==========================================
- Coverage 36.77% 35.15% -1.63%
==========================================
Files 229 245 +16
Lines 24016 25857 +1841
==========================================
+ Hits 8832 9089 +257
- Misses 14177 15710 +1533
- Partials 1007 1058 +51
☔ View full report in Codecov by Sentry. |
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
@@ -413,3 +463,7 @@ func (f *FunctionCallExpressionAtom) Restore(flag RestoreFlag, sb *strings.Build | |||
func (f *FunctionCallExpressionAtom) phantom() expressionAtomPhantom { | |||
return expressionAtomPhantom{} | |||
} | |||
|
|||
func (f *FunctionCallExpressionAtom) Clone() ExpressionAtom { | |||
panic("implement me") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Implement later or needn't ?
支持跨库hashjoin功能
#656